home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ Start in MyDocs 1.xpl < prev    next >
Text File  |  2001-11-27  |  1KB  |  38 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Appearance\System\Open/Save Dialog"
  5. "NAME"="Start in My Documents"
  6. "VERSION"="1.02"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Open/Save starts in My Documents"
  9. "DESCRIPTION 1"="When you open or save a file, some programs start in My Documents, instead of C:\. With this program you can disable this behavior."
  10. "DESCRIPTION 2"="Bear in mind that the majority of programs ignore this setting."
  11. "COMMENT 1"="Thanks to Axcel216 [axcel216@aol.com] and TeXHeX [TeXHeX@xteq.com] for the idea!"
  12. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "CONTACTURL"="http://www.xteq.com/"
  15.  
  16. sP="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Documents\DisableStartInMyDocs"
  17.  
  18. SUB Plugin_Initialize
  19.  s=RegReadValue(sP)
  20.  if s=0 OR IsEmpty(s) then
  21.   Call SetUIElement(1,true)
  22.  end if
  23.  
  24.  ' I think there should be a SetUIElephant :)
  25. END SUB
  26.  
  27. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  28.  s=GetUIElement(1)
  29.  if s=true then
  30.   Call RegWriteValue(sP,0,2)
  31.  else
  32.   Call RegWriteValue(sP,1,2)
  33.  end if
  34. END SUB
  35.  
  36. SUB Plugin_Terminate
  37. END SUB
  38.